* {
  margin: 0;
  padding: 0;
  text-transform: capitalize;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333;
}

.container .email-signature {
  width: 700px;
  display: flex;
  align-items: center;
  background: #222;
  border-radius: 5px;
  box-shadow: 0 2px 5px #000;
  padding: 10px 40px;
  position: relative;
  overflow: hidden;
}

.container .email-signature .image img{
  height: 150px;
  width: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 0 5px #333;
  position: relative;
}

.container .email-signature .image::before{
  content: '';
  position: absolute;
  top: -25px;
  right: 70%;
  height: 300px;
  width: 300px;
  background: #f0f0f0;
  border-radius: 50%;
  box-shadow: 20px 0 0 #2c3e50;
}

.container .email-signature .content {
  padding-left: 60px;
}

.container .email-signature .content .name{
  padding-left: 10px;
  font-size: 25px;
  color: #f0f0f0;
}

.container .email-signature .content .post{
  padding: 10px 0;
  font-size: 15px;
  margin: 10px 5px;
  border-radius: 50px;
  background: #ccc;
  color: #333;
  text-align: center;
}

.container .email-signature .content .contact-info{
  margin-top: 30px;
}

.container .email-signature .content .contact-info li{
  list-style-type: none;
  margin: 10px 0;
  color: #ccc;
  font-weight: 600;
  letter-spacing: 2px;
}

.container .email-signature .content .contact-info li i{
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  background: #2c3e50;
  margin-right: 10px;
  color: #fff;
}

.container .email-signature .content .icons {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  display: flex;
  flex-flow: column;
}

.container .email-signature .content .icons a {
  text-decoration: none;
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  background: #2c3e50;
  margin-right: 10px;
  color: #fff;
  margin: 5px 0;
}

.container .email-signature .content .icons a:hover {
  background: #333;
}

@media screen and (max-width:768px) {
  .container .email-signature {
    flex-flow: column;
    width: 90%;
  }

  .container .email-signature .image::before{
    width: 100%;
    box-shadow: 0 15px 0 #2c3e50;
    top: -25%;
    left: 0;
  }

  .container .email-signature .content {
    width: 100%;
    text-align: center;
    padding: 50px 0;
  }

  .container .email-signature .content .contact-info li {
    text-align: left;
  }

  .container .email-signature .content .icons {
    top: 93%;
    right: 0;
    width: 100%;
    flex-flow: row;
    justify-content: center;
  }

  .container .email-signature .content .icons a {
    margin: 0 5px;
  }
}
